home *** CD-ROM | disk | FTP | other *** search
/ Internet Surfer 2.0 / Internet Surfer 2.0 (Wayzata Technology) (1996).iso / pc / text / mac / faqs.387 < prev    next >
Text File  |  1996-02-12  |  28KB  |  578 lines

  1. Frequently Asked Questions (FAQS);faqs.387
  2.  
  3.  
  4.  
  5.     Also, see the directory PD1:<MSDOS.MOUSE> at Simtel.
  6.  
  7. Q607. How can I access a specific address in the PC's memory?
  8.  
  9.     First check the library that came with your compiler.  Many vendors
  10.     have some variant of peek and poke functions; in Turbo Pascal use
  11.     the pseudo-arrays Mem, MemW, and MemL.  As an alternative, you can
  12.     construct a far pointer:  use Ptr in Turbo Pascal, MK_FP in the
  13.     Turbo C family, and FP_OFF and FP_SEG in Microsoft C.
  14.  
  15.     Caution:  Turbo C and Turbo C++ also have FP_OFF and FP_SEG macros,
  16.     but they can't be used to construct a pointer.  In Borland C++ those
  17.     macros work the same as in Microsoft C, but MK_FP is easier to use.
  18.  
  19.     By the way, it's not useful to talk about "portable" ways to do
  20.     this.  Any operation that is tied to a specific memory address is
  21.     not likely to work on another kind of machine.
  22.  
  23. Q608. How can I read or write my PC's CMOS memory?
  24.  
  25.     There are a great many public-domain utilities that do this.  These
  26.     were available for download from Simtel as of 31 March 1992:
  27.  
  28.     PD1:<MSDOS.AT>
  29.     CMOS14.ZIP     5965  920817  Saves/restores CMOS to/from file
  30.     CMOSER11.ZIP  28323  910721  386/286 enhanced CMOS setup program
  31.     CMOSRAM.ZIP   76096  920214  Save AT/386/486 CMOS data to file and restore
  32.     ROM2.ARC      20497  900131  Save AT and 386 CMOS data to file and restore
  33.     SETUP21.ARC   24888  880613  Setup program which modifies CMOS RAM
  34.     VIEWCMOS.ARC  15374  900225  Display contents of AT CMOS RAM, w/C source
  35.  
  36.     At garbo, /pc/ts/tsutle17.zip contains a CMOS program to check and
  37.     display CMOS memory, but not to write to it.
  38.  
  39.     I have heard good reports of CMOS299.ZIP, available in the pc.dir
  40.     directory of cantva.canterbury.ac.nz [132.181.30.3].
  41.  
  42.     Of the above, my only experience is with CMOSRAM, which seems to
  43.     work fine.  It contains an excellent (and witty) .DOC file that
  44.     explains the hardware involved and gives specific recommendations
  45.     for preventing disaster or recovering from it.  It's $5 shareware.
  46.  
  47.     Robert Jourdain's {Programmer's Problem Solver for the IBM PC, XT,
  48.     and AT} has code for accessing the CMOS RAM, according to an article
  49.     posted in this newsgroup.
  50.  
  51. Q609. How can I access memory beyond 640K?
  52.  
  53.     I'm outside my expertise on this one, but in late 1992 Jamshid
  54.     Afshar (jamshid@emx.utexas.edu) kindly supplied the following, which
  55.     incorporates some corrections agreed with Duncan Murdoch (dmurdoch@
  56.     mast.queensu.ca).  If you have any corrections or comments, please
  57.     send them to both the above addresses.
  58.  
  59.     ...........................(begin quote)............................
  60.     1. Use XMS or EMS memory.  XMS is preferable in most cases, but
  61.     some machines won't provide it.  There are some libraries available
  62.     at Simtel to access XMS or EMS.  The disadvantage is that you
  63.     don't allocate the memory as you would with malloc() (or `new' in
  64.     C++).  I believe it also requires that you lock this memory when in
  65.     use.  This means your code is not easily ported to other (and
  66.     future) operating systems and that your code is more convoluted than
  67.     it would be under a "real" os.  The advantage is that the library
  68.     works with compilers since Turbo C 2.0 (I think) and that your
  69.     program will easily run on even 286s.
  70.  
  71.     2.  Program under MS Windows.  MS Windows functions as a 16-bit DOS
  72.     Extender (see #3).  Borland/Turbo C++ 3.x includes EasyWin [and
  73.     Microsoft C/C++ 7.0 has QuickWin --ed.] which is a library that
  74.     automatically lets you compile your current code using C/C++
  75.     standard input or <conio.h> into a MS Windows program so your code
  76.     can immediately allocate many MBs of memory (Windows enhanced mode
  77.     even does virtual memory).  The disadvantage is that like any 16-bit
  78.     Extender a single malloc() is restricted to 64K (unless you want to
  79.     mess with huge pointers in Windows).  Also, EasyWin's screen output
  80.     is significantly slower than a DOS character-mode program's and you
  81.     must of course run the program from Windows.
  82.  
  83.     3.  Use a 16-bit or 32-bit DOS Extender.  This is definitely the
  84.     best solution from the programmer's standpoint.  You just allocate
  85.     as much memory as you need using malloc() or 'new'.  A 16-bit
  86.     Extender still has 16-bit ints and restricts arrays to 64K, but a
  87.     32-bit Extender has 32-bits ints (which makes porting a lot of UNIX
  88.     code easier) so there are no 64K limits.  A 32-bit Extender requires
  89.     a 32-bit compiler and the program will not run on 286s.  Some
  90.     Extenders also do virtual memory.  Using an Extender doesn't require
  91.     source code changes and unlike option #1 your code is portable and
  92.     not obsolete in a few months.  Your options for this solution are:
  93.  
  94.     - Buy PharLap's 16-bit Extender that works with BC++ 3.0+ and MSC
  95.       (just requires a relink).  Note, the BC++ 3.1 upgrade came with
  96.       PharLap "lite".  Pharlap's 32-bit Extender works with 32-bit
  97.       compilers like [?]
  98.  
  99.     - Get the GNU (free,copylefted) gcc 2.x compiler which DJ Delorie
  100.       ported from UNIX and which uses his 32-bit Extender.  It supports
  101.       C and C++, but the Extender is VCPI which means neither the
  102.       compiler nor programs it produces will run in a DOS session under
  103.       Windows.  FTP to barnacle.erc.clarkson.edu and get
  104.       pub/msdos/djgpp/readme.
  105.  
  106.     - Get a 32-bit compiler or one that comes with a DOS Extender.
  107.       Zortech comes with 16-bit and a 32-bit Extenders (no debugger for
  108.       32-bit programs, but Flashtek sells one).  Watcom also makes a C
  109.       [and C++?] 32-bit compiler.  [If anyone else has products or plans
  110.       to announce, please let me know.]
  111.  
  112.     - Buy Borland Pascal 7.0.  It includes a 16 bit royalty-free DOS
  113.       extender using the same interface as MS Windows.  It functions
  114.       under a DPMI server like Windows or QDPMI from Quarterdeck, and
  115.       also provides its own server which you can distribute with your
  116.       programs.
  117.  
  118.     4.  This option doesn't really count since it's not a solution in
  119.     DOS, but you could switch to a full 32-bit operating system like
  120.     OS/2 2.0 or UNIX (or NT when it comes out).  I believe Win32 will
  121.     allow you to write 32-bit Windows programs.  [can someone fill me in
  122.     on what exactly Win32 is?]
  123.     ............................(end quote).............................
  124.  
  125.  
  126. section 7. Other software questions and problems
  127. ================================================
  128.  
  129. Q701. How can a program reboot my PC?
  130.  
  131.     You can generate a "cold" boot or a "warm" boot.  A cold boot is
  132.     the same as turning the power off and on; a warm boot is the same as
  133.     Ctrl-Alt-Del and skips the power-on self test.
  134.  
  135.     For a warm boot, store the hex value 1234 in the word at 0040:0072.
  136.     For a cold boot, store 0 in that word.  Then, if you want to live
  137.     dangerously, jump to address FFFF:0000.  Here's C code to do it:
  138.  
  139.         /* WARNING:  data loss possible */
  140.         void bootme(int want_warm)  /* arg 0 = cold boot, 1 = warm */ {
  141.             void (far* boot)(void) = (void (far*)(void))0xFFFF0000UL;
  142.             unsigned far* type = (unsigned far*)0x00400072UL;
  143.             *type = (want_warm ? 0x1234 : 0);
  144.             (*boot)( );
  145.         }
  146.  
  147.     What's wrong with that method?  It will boot right away, without
  148.     closing files, flushing disk caches, etc.  If you boot without
  149.     flushing a write-behind disk cache (if one is running), you could
  150.     lose data or even trash your hard drive.
  151.  
  152.     There are two methods of signaling the cache to flush its buffers:
  153.     (1) simulate a keyboard Ctrl-Alt-Del in the keystroke translation
  154.     function of the BIOS (INT 15 function 4F), and (2) issue a disk
  155.     reset (DOS function 0D).  Most disk-cache programs hook one or both
  156.     of those interrupts, so if you use both methods you'll probably be
  157.     safe.
  158.  
  159.     When user code simulates a Ctrl-Alt-Del, one or more of the programs
  160.     that have hooked INT 15 function 4F can ask that the key be ignored by
  161.     clearing the carry flag.  For example, HyperDisk does this when it
  162.     has started but not finished a cache flush.  So if the carry flag
  163.     comes back cleared, the boot code has to wait a couple of cluck
  164.     ticks and then try again.  (None of this matters on older machines
  165.     whose BIOS can't support 101- or 102-key keyboards; see "What is the
  166.     SysRq key for?" in section 3, "Keyboard".)
  167.  
  168.     Here's C code that tries to signal the disk cache (if any) to flush:
  169.  
  170.         #include <dos.h>
  171.         void bootme(int want_warm)  /* arg 0 = cold boot, 1 = warm */ {
  172.             union REGS reg;
  173.             void    (far* boot)(void) = (void (far*)(void))0xFFFF0000UL;
  174.             unsigned far* boottype    =     (unsigned far*)0x00400072UL;
  175.             char     far* shiftstate  =         (char far*)0x00400017UL;
  176.             unsigned      ticks;
  177.             int           time_to_waste;
  178.             /* Simulate reception of Ctrl-Alt-Del: */
  179.             for (;;) {
  180.                 *shiftstate |= 0x0C;    /* turn on Ctrl & Alt */
  181.                 reg.x.ax = 0x4F53;      /* 0x53 = Del's scan code */
  182.                 reg.x.cflag = 1;        /* sentinel for ignoring key */
  183.                 int86(0x15, ®, ®);
  184.                 /* If carry flag is still set, we've finished. */
  185.                 if (reg.x.cflag)
  186.                     break;
  187.                 /* Else waste some time before trying again: */
  188.                 reg.h.ah = 0;
  189.                 int86(0x1A, ®, ®);/* system time into CX:DX */
  190.                 ticks = reg.x.dx;
  191.                 for (time_to_waste = 3;  time_to_waste > 0;  ) {
  192.                     reg.h.ah = 0;
  193.                     int86(0x1A, ®, ®);
  194.                     if (ticks != reg.x.dx)
  195.                         ticks = reg.x.dx , --time_to_waste;
  196.                 }
  197.             }
  198.             /* Issue a DOS disk reset request: */
  199.             reg.h.ah = 0x0D;
  200.             int86(0x21, ®, ®);
  201.             /* Set boot type and boot: */
  202.             *boottype = (want_warm ? 0x1234 : 0);
  203.             (*boot)( );
  204.         }
  205.  
  206. Q702. How can I time events with finer resolution than the system
  207.       clock's 55 ms (about 18 ticks a second)?
  208.  
  209.     The following files, among others, can be downloaded from Simtel:
  210.  
  211.     PD1:<MSDOS.AT>
  212.     ATIM.ARC       5946  881126  Precision program timing for AT
  213.  
  214.     PD1:<MSDOS.C>
  215.     MILLISEC.ZIP  37734  911205  MSC/asm src for millisecond res timing
  216.     MSCHRT3.ZIP   53708  910605  High-res timer toolbox for MSC 5.1
  217.     MSEC_12.ZIP    8484  920320  High-def millisec timer v1.2 (C,ASM)
  218.     ZTIMER11.ZIP  77625  920428  Microsecond timer for C, C++, ASM
  219.  
  220.     PD1:<MSDOS.TURBO-C>
  221.     TCHRT3.ZIP    53436  910606  High-res timer toolbox for Turbo C 2.0
  222.     TCTIMER.ARC   20087  891030  High-res timing of events for Turbo C
  223.  
  224.     PD1:<MSDOS.TURBOPAS>
  225.     BONUS507.ARC 150435  900205  [Turbo Pascal source: high-res timing]
  226.  
  227.     Pascal users can download source code in /pc/turbopas/bonus507.zip
  228.     at garbo.
  229.  
  230. Q703. How can I find the error level of the previous program?
  231.  
  232.     First, which previous program are you talking about?  If your
  233.     current program ran another one, when the child program ends its
  234.     error level is available to the program that spawned it.  Most
  235.     high-level languages provide a way to do this; for instance, in
  236.     Turbo Pascal it's Lo(DosExitCode) and the high byte gives the way in
  237.     which the child terminated.  In Microsoft C, the exit code of a
  238.     synchronous child process is the return value of the spawn-type
  239.     function that creates the process.
  240.  
  241.     If your language doesn't have a function to return the error code
  242.     of a child process, you can use INT 21 function 4D (get return
  243.     code).  By the way, this will tell you the child's exit code and the
  244.     manner of its ending (normal, Ctrl-C, critical error, or TSR).
  245.  
  246.     It's much trickier if the current program wants to get the error
  247.     level of the program that ran and finished before this one started.
  248.     G.A.Theall has published source and compiled code to do this; you
  249.     can download it from Simtel as PD1:<MSDOS.BATUTL>ERRLVL12.ZIP.  (The
  250.     code uses undocumented features in DOS 3.3 through 5.0.  Theall says
  251.     in the .DOC file that the values returned under 4DOS or other
  252.     replacements won't be right.)
  253.  
  254. Q704. How can a program set DOS environment variables?
  255.  
  256.     Program functions that read or write "the environment" typically
  257.     access only the program's copy of the environment.  What this Q
  258.     really wants to do is to modify the active environment, the one that
  259.     is affected by SET commands in batch files or at the DOS prompt.
  260.     You need to do some programming to find the active environment, and
  261.     that programming varies for different versions of DOS.
  262.  
  263.     A fairly well-written article in {PC Magazine} volume 8 number 20
  264.     (1989 Nov 28), pages 309-314, explains how to find the active
  265.     environment, and includes Pascal source code.  The article hints at
  266.     how to change the environment, and suggests creating paths longer
  267.     than 128 characters as one application.
  268.  
  269.     In searching Simtel for source code, I found many possibilities.  I
  270.     liked PD1:<MSDOS.SYSUTL>RBSETNV1.ZIP of the ones I looked at (not
  271.     all of them).  It includes some utilities to manipulate the environ-
  272.     ment, with source code in C.
  273.  
  274.     You can also use a call to INT 2E, Pass Command to Interpreter for
  275.     Execution; see Ralf Brown's interrupt list for details and cautions.
  276.  
  277. Q705. How can I change the switch character to - from /?
  278.  
  279.     Under DOS 5.0, you can't -- not completely, anyway.  INT 21 function
  280.     3700, get switch character, always returns a '/' (hex 2F) -- and the
  281.     DOS commands don't even call that function, but hard code '/' as the
  282.     switch character.
  283.  
  284.     Some history:  DOS used to let you change the switch character by
  285.     using SWITCHAR= in CONFIG.SYS or by calling DOS function 3701.  DOS
  286.     commands and other programs called DOS function 3700 to find out the
  287.     switch character.  If you changed the switch character to '-' (the
  288.     usual choice), you could then type "dir c:/c700 -p" rather than "dir
  289.     c:\c700 /p".  Under DOS 4.0, the DOS commands ignored the switch
  290.     character but functions 3700 and 3701 still worked and could be used
  291.     by other programs.  Under DOS 5.0, even those functions no longer
  292.     work, though all DOS functions still accept '/' or '\' in file
  293.     specs.
  294.  
  295.     You can reactivate the functions to get and set switchar by using
  296.     programs like SLASH.ZIP or the sample TSR called SWITCHAR in
  297.     AMISL091.ZIP (see "How can I write a TSR?", below.)  DOS commands
  298.     will still use the slash, but non-DOS programs that call DOS func-
  299.     tion 3700 will use your desired switch character.  (DOS replacements
  300.     like 4DOS may honor the switch character for internal commands.)
  301.  
  302.     Some readers may wonder why this is even an issue.  Making '-' the
  303.     switch character frees up the front slash to separate names in the
  304.     path part of a file spec.  This is easier for the ten-fingered to
  305.     type, and it's one less difference to remember for commuters between
  306.     DOS and Unix.  The switch character is the only issue, since all the
  307.     INT 21 functions accept '/' or '\' to separate directory names.
  308.  
  309. Q706. Why does my interrupt function behave strangely?
  310.  
  311.     Interrupt service routines can be tricky, because you have to do
  312.     some things differently from "normal" programs.  If you make a
  313.     mistake, debugging is a pain because the symptoms may not point at
  314.     what's wrong.  Your machine may lock up or behave erratically, or
  315.     just about anything else can happen.  Here are some things to look
  316.     for.  (See the next Q for general help before you have a problem.)
  317.  
  318.     First, did you fail to set up the registers at the start of your
  319.     routine?  When your routine begins executing, you can count on
  320.     having CS point to your code segment and SS:SP point to some valid
  321.     stack (of unknown length), and that's it.  In particular, an
  322.     interrupt service routine must set DS to DGROUP before accessing any
  323.     data in its data segments.  (If you're writing in a high-level
  324.     language, the compiler may generate this code for you automatically;
  325.     check your compiler manual.  For instance, in Borland and Microsoft
  326.     C, give your function the "interrupt" attribute.)
  327.  
  328.     Did you remember to turn off stack checking when compiling your
  329.     interrupt server and any functions it calls?  The stack during the
  330.     interrupt is not where the stack-checking code expects it to be.
  331.     (Caution:  Some third-party libraries have stack checking compiled
  332.     in, so you can't call them from your interrupt service routine.)
  333.  
  334.     Next, are you calling any DOS functions (INT 21, 25, or 26) in your
  335.     routine?  DOS is not re-entrant.  This means that if your interrupt
  336.     happens to be triggered while the CPU is executing a DOS function,
  337.     calling another DOS function will wreak havoc.  (Some DOS functions
  338.     are fully re-entrant, as noted in Ralf Brown's interrupt list.
  339.     Also, your program can test, in a way too complicated to present
  340.     here, when it's safe to call non-re-entrant DOS functions.  See INT
  341.     28 and functions 34, 5D06, 5D0B of INT 21; and consult {Undocumented
  342.     DOS} by Andrew Schulman.  Your program must read both the "InDOS
  343.     flag" and the "critical error flag".)
  344.  
  345.     Is a function in your language library causing trouble?  Does it
  346.     depend on some initializations done at program startup that is no
  347.     longer available when the interrupt executes?  Does it call DOS (see
  348.     preceding paragraph)?  For example, in both Borland and Microsoft C
  349.     the memory-allocation functions (malloc, etc..) and standard I/O
  350.     functions (scanf, printf) call DOS functions and also depend on
  351.     setups that they can't get at from inside an interrupt.  Many other
  352.     library functions have the same problem, so you can't use them
  353.     inside an interrupt function without special precautions.
  354.  
  355.     Is your routine simply taking too long?  This can be a problem if
  356.     you're hooking on to the timer interrupt, INT 1C or INT 8.  Since
  357.     that interrupt expects to be called 18.2 times a second, your
  358.     routine -- plus any others hooked to the same interrupts -- must
  359.     execute in less than 55 ms.  If they use even a substantial fraction
  360.     of that time, you'll see significant slowdowns of your foreground
  361.     program.  For a good writeup, download INTSHARE (from ni.funet.fi
  362.     in pub/msdos/simtel20/info or from Simtel in PD1:<MSDOS.INFO>).
  363.  
  364.     Did you forget to restore all registers at the end of your routine?
  365.  
  366.     Did you chain improperly to the original interrupt?  You need to
  367.     restore the stack to the way it was upon entry to your routine, then
  368.     do a far jump (not call) to the original interrupt service routine.
  369.     (The process is a little different in high-level languages.)
  370.  
  371. Q707. How can I write a TSR (terminate-stay-resident) utility?
  372.  
  373.     Several books can help you with this.
  374.  
  375.     - Ray Duncan's {Advanced MS-DOS}, ISBN 1-55615-157-8, gives a brief
  376.       checklist intended for experienced programmers.  The ISBN is for
  377.       the second edition, through DOS 4; but check to see whether the
  378.       DOS 5 version is available yet.
  379.  
  380.     - {DOS 5:  A Developer's Guide} by Al Williams, ISBN 1-55851-177-6,
  381.       goes into a little more detail, 90 pages worth!
  382.  
  383.     - Pascal programmers might look at {The Ultimate DOS Programmer's
  384.       Manual} by John Mueller and Wallace Wang, ISBN 0-8306-3534-3, for
  385.       an extended example in mixed Pascal and assembler.
  386.  
  387.     - For a pure assembler treatment, check Steven Holzner's {Advanced
  388.       Assembly Language}, ISBN 0-13-663014-6.  He has a book with the
  389.       same title out from Brady Press, but it's about half as long as
  390.       this one.
  391.  
  392.     - For C programmers, there's a chapter in Herbert Schildt's {The Art
  393.       of C:  Elegant Programming Solutions}.  I haven't seen the book,
  394.       but a posted article recommended it.
  395.  
  396.     At Simtel, check PD1:<MSDOS.ASMUTL>AMISL091.ZIP, which contains Ralf
  397.     Brown's assembly-language implementation of the Alternate Multiplex
  398.     Interrupt Specification, with utilities in C.  The spec itself is
  399.     PD1:<MSDOS.INFO>ALTMPX35.ZIP.  Both are also available at CS.CMU.EDU
  400.     [128.2.222.173] in /afs/cs/user/ralf/pub (change directory with a
  401.     single command and use lower-case filenames).
  402.  
  403.     You might want to download PD1:<MSDOS.ASMUTL>TEMPLATE.ZIP from
  404.     Simtel.  It's Douglas Boling's MASM template for a TSR.
  405.  
  406.     Finally, there are commercial products, of which TesSeRact (for
  407.     C-language TSRs) is one of the best known.
  408.  
  409. Q708. How can I write a device driver?
  410.  
  411.     Many books answer this in detail.  Among them are {Advanced MS-DOS}
  412.     and {DOS 5: A Developer's Guide}, cited in the preceding Q.
  413.     Michael Tischer's {PC System Programming}, ISBN 1-55755-036-0, has
  414.     an extensive treatment, as does Dettman and Kyle's {DOS Programmer's
  415.     Reference: 2d Edition}, ISBN 0-88022-458-4.  For a really in-depth
  416.     treatment, look for a specialized book like Robert Lai's {Writing
  417.     MS-DOS Device Drivers}, ISBN 0-201-13185-4.
  418.  
  419. Q709. What can I use to manage versions of software?
  420.  
  421.     In PD1:<MSDOS.PGMUTL> at Simtel you'll find RCS56DOS.ZIP.  I haven't
  422.     used it myself, but I understand this is a port of the Unix RCS
  423.     utility, and is no longer limited to one-character extensions on
  424.     filenames (so .CPP and .BAS are fine).
  425.  
  426. Q710. What's this "null pointer assignment" after my C program executes?
  427.  
  428.     Somewhere in your program, you assigned a value _through_ a pointer
  429.     without first assigning a value _to_ the pointer.  (This might have
  430.     been something like a strcpy or memcpy with a pointer as its first
  431.     argument, not necessarily an actual assignment statement.)  Your
  432.     program may look like it ran correctly, but if you get this message
  433.     you can be certain that there's a bug somewhere.
  434.  
  435.     Microsoft and Borland C, as part of their exit code (after a return
  436.     from your main function), check whether the location 0000 in your
  437.     data segment contains a different value from what you started with;
  438.     if so, they infer that you must have used an uninitialized pointer.
  439.  
  440.     To track down the problem, you can put exit( ) statements at various
  441.     spots in the program and narrow down where the uninitialized pointer
  442.     is being used by seeing which added exit( ) makes the null-pointer
  443.     message disappear.  Or, in the debugger, set a watch at location
  444.     0000 in your data segment, assuming you're in small or medium model.
  445.     (If data pointers are 32 bits, as in the compact and large models, a
  446.     null pointer will overwrite the interrupt vectors at 0000:0000 and
  447.     probably lock up your machine.)
  448.  
  449.     Under MSC/C++ 7.0, you can declare the undocumented library function
  450.  
  451.         extern _cdecl _nullcheck(void);
  452.  
  453.     and then sprinkle calls to _nullcheck( ) through your program at
  454.     regular intervals.
  455.  
  456.     Borland's TechFax document #TI726 discusses the null pointer
  457.     assignment from a Borland point of view.  Download file BCHELP10.ZIP
  458.     from PD1:<MSDOS.TURBO-C> at Simtel.
  459.  
  460. (continued in part 4)
  461. --
  462. Stan Brown, Oak Road Systems                      brown@Ncoast.ORG
  463. Cleveland, Ohio, USA
  464. Xref: bloom-picayune.mit.edu comp.os.msdos.programmer:18891 news.answers:4714
  465. Path: bloom-picayune.mit.edu!enterpoop.mit.edu!eru.mt.luth.se!lunic!sunic!mcsun!uknet!doc.ic.ac.uk!agate!ames!sun-barr!cs.utexas.edu!zaphod.mps.ohio-state.edu!magnus.acs.ohio-state.edu!usenet.ins.cwru.edu!ncoast!brown
  466. From: brown@NCoast.ORG (Stan Brown)
  467. Newsgroups: comp.os.msdos.programmer,news.answers
  468. Subject: comp.os.msdos.programmer FAQ part 4 of 4
  469. Message-ID: <msdos-faq.921220.4@NCoast.ORG>
  470. Date: 20 Dec 92 20:15:05 GMT
  471. Expires: Wed, 3 Feb 1993 20:15:05 GMT
  472. References: <msdos-faq.921220.1@NCoast.ORG>
  473. Followup-To: comp.os.msdos.programmer
  474. Organization: Oak Road Systems, Cleveland Ohio USA
  475. Lines: 446
  476. Approved: news-answers-request@MIT.Edu
  477. Supersedes: <msdos-faq.921205.4@NCoast.ORG>
  478.  
  479. Archive-name: msdos-programmer-faq/part4
  480. Last-modified: 20 December 1922
  481.  
  482.  
  483. (continued from part 3)         (no warranty on the code or information)
  484.  
  485. If the posting date is more than six weeks in the past, see instructions
  486. in part 4 of this list for how to get an updated copy.
  487.  
  488.             Copyright (C) 1992  Stan Brown, Oak Road Systems
  489.  
  490.  
  491. section A. Downloads
  492. ====================
  493.  
  494. QA01. What is garbo?  What is wustl?
  495.  
  496.     These are alternative archive sites.  Please try to use the site for
  497.     your continent; see next Q.
  498.  
  499. QA02. What are Simtel and "mirror sites"?  What good are they?
  500.  
  501.     The U.S. Government maintains a massive archive of useful software
  502.     and info files at the SIMTEL20 site.  This includes scads of
  503.     utilities, plus source code from {PC Magazine}, {Dr Dobbs Journal},
  504.     and others.  You can use Simtel by ftp (wsmr-simtel20.army.mil =
  505.     192.88.110.20) or (if necessary) email.  To find out how, look for
  506.     these monthly articles in comp.binaries.ibm.pc.archives :
  507.  
  508.         How to find files in the SIMTEL20 msdos collection
  509.         SIMTEL20 archive info for Internet FTP users
  510.         How to order SIMTEL20 files via e-mail
  511.  
  512.     Another important archive site is garbo (at the University of Vaasa,
  513.     Finland).  garbo is set up differently from Simtel but contains many
  514.     of the same useful files.
  515.  
  516.     Please try first at the site nearest you:
  517.  
  518.     - Europe and Asia: look first at garbo; for prerecorded instructions
  519.       (about 29K), email Timo Salmi (ts@uwasa.fi).
  520.  
  521.     - Oceania:  try archie.au first.  (This is different from the Archie
  522.       mail server, archie-l@cs.mcgill.ca.)  Paul Brooks has written to
  523.       say that it "mirrors garbo and simtel-20 (in /micros/pc/simtel-20,
  524.       /micros/pc/garbo) as well as many other archives.  Telnetting to
  525.       'archie.au' and logging on as 'archie' (no password) will access
  526.       the Oceanic ARCHIE server."  Email Craig Warren (ccw@archie.au)
  527.       for instructions if needed.
  528.  
  529.     - North America: try SIMTEL20 (a/k/a Simtel) first; see above for
  530.       instructions or email Keith Petersen (w8sdz@vela.acs.oakland.edu).
  531.       Also see the Simtel mirrors OAK.Oakland.Edu and ftp.uu.net, or the
  532.       SIMTEL20 & garbo mirror wuarchive.wustl.edu [128.252.135.4].
  533.  
  534.     General cautions and guidelines:
  535.  
  536.     - Some of the mirrors may lag occasionally, or might not have all
  537.       the files.
  538.  
  539.     - If you send an email message and don't get a reply within a few
  540.       days, there are two likely causes.  Most likely the Reply-to path
  541.       in your message is not valid; your sysadmin can check this and
  542.       correct it if necessary and then you can send your message again.
  543.       Occasionally a machine goes down for an extended period, which may
  544.       prevent a timely reply to your message.  If you're sure your
  545.       message bears a good reply path and you haven't got a reply in a
  546.       week or so, you might send your message again, once.  Don't post
  547.       it as an article in a newsgroup.
  548.  
  549. QA03. Where do I find program <mumble>?
  550.  
  551.     There are several newsgroups to help; comp.binaries.ibm.pc.wanted is
  552.     generally the best place to ask your question.  Please review the
  553.     guidelines in "What other newsgroups should I know about?" in
  554.     section 1, "General questions".  See also the next Q.
  555.  
  556. QA04. How can I check Simtel or garbo before I post a request for a
  557.       program?
  558.  
  559.     What a good idea!  It will save your time and save net resources
  560.     too.  Simtel and garbo have indexes of their contents, which you can
  561.     download and use in searching off line.
  562.  
  563.     garbo has an index file, /pc/INDEX, an annotated list, frequently
  564.     updated, of the MS-DOS files there; to save download time, get the
  565.     packed form /pc/INDEX.ZIP.  The news file, /pc/pd2/news-pd2 contains
  566.     selected news on all MS-DOS directories at garbo.
  567.  
  568.     Simtel's index files are all in PD1:<MSDOS.FILEDOCS>, and are
  569.     updated several times a month.  SIMLIST.ZIP is in text format.  But
  570.     you may prefer the file SIMIBM.ZIP, which is comma-delimited for
  571.     easy use with any of these search facilities:
  572.  
  573.     - Two search programs are SIMTEL35.ARC and SIMDIR22.ZIP.  Of the
  574.       two, I find I use SIMDIR much more often.
  575.  
  576.     - dBASE III or IV users can load the index from SIMLIST.ZIP using
  577.       instructions in SIMIBM.INF and SIMIBM.DB3.
  578.